From 8d2dccd03c4dae7933d1af512baec217419f175d Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Mon, 11 Jul 2005 08:59:58 +0000 Subject: [PATCH] Remove debug printks. Sometimes they generate too much output on serial console. Signed-off-by: Arun Sharma --- xen/arch/x86/vmx.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/xen/arch/x86/vmx.c b/xen/arch/x86/vmx.c index d2b439306c..d52ab0c8eb 100644 --- a/xen/arch/x86/vmx.c +++ b/xen/arch/x86/vmx.c @@ -1445,12 +1445,9 @@ asmlinkage void vmx_vmexit_handler(struct cpu_user_regs regs) if (idtv_info_field & 0x800) { /* valid error code */ unsigned long error_code; - printk("VMX exit %x: %x/%lx\n", - exit_reason, idtv_info_field, error_code); __vmread(VM_EXIT_INTR_ERROR_CODE, &error_code); __vmwrite(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); - } else - printk("VMX exit %x: %x\n", exit_reason, idtv_info_field); + } } VMX_DBG_LOG(DBG_LEVEL_1, "idtv_info_field=%x", idtv_info_field); } -- 2.30.2